home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE15
/
CPPCLASS
/
cpp16
/
DELEVENT.H
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-07-17
|
253 b
|
13 lines
#ifndef DelphiEvents_H
#define DelphiEvents_H
typedef void _pascal (*TNotifyEvent)( const void *Sender,
const void *thisPtr );
//a Delphi Method pointer contains the Self
struct TEvent
{
void *Code;
void *Self;
};
#endif